ALCO USA Inc | CLI Install

Windows: paste into PowerShell running as Administrator, or run as SYSTEM. Existing enterprise script policy and security controls remain enforced.

Downloads, checks SHA-256, extracts, and runs the installer silently.

$ErrorActionPreference='Stop'; $f=Join-Path $env:TEMP ('alco-'+[guid]::NewGuid().ToString('N')+'.ps1'); try { [Net.ServicePointManager]::SecurityProtocol=[Net.SecurityProtocolType]::Tls12; Invoke-WebRequest -UseBasicParsing 'https://access.alcohq.com/cli/install-windows.ps1' -OutFile $f; if ((Get-FileHash $f -Algorithm SHA256).Hash -ne '8f9df36ed1b858db2278c35eac4db5bbf541636e7dbe79a8bad7a8c9bc832127') { throw 'Script integrity check failed' }; & $f } finally { Remove-Item $f -Force -ErrorAction SilentlyContinue }
